home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 93win / data1.cab / DLL_Toolkit / Source / HTBButton / Button.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-03-02  |  1.8 KB  |  62 lines

  1. // Button.h : main header file for the BUTTON DLL
  2. //    High Tech BASIC, Copyright (C) TransEra Corp 1999, All Rights Reserved.
  3.  
  4. #if !defined(AFX_BUTTON_H__D6D63EC5_3EA4_11D3_A911_00104B9A4FD0__INCLUDED_)
  5. #define AFX_BUTTON_H__D6D63EC5_3EA4_11D3_A911_00104B9A4FD0__INCLUDED_
  6.  
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10.  
  11. #ifndef __AFXWIN_H__
  12.     #error include 'stdafx.h' before including this file for PCH
  13. #endif
  14.  
  15. #include "resource.h"        // main symbols
  16. #include "ButtonDlg.h"    // Added by ClassView
  17.  
  18. //**************************************************************************
  19. // begin prototypes
  20.  
  21.  
  22. void Initialize(ButtonDlg * Bdlg);
  23. short Showbutton(short option, short count, long width, char* title, char* text0, char* text1, char* text2 ,char* text3,
  24.                  char* text4, char* text5, char* text6, char* text7, char* text8, char* text9, char* text10, short* press);
  25. void Setfocus();
  26. void Closebutton();
  27.  
  28.  
  29. // end prototypes
  30. //***************************************************************************
  31.  
  32.  
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CButtonApp
  35. // See Button.cpp for the implementation of this class
  36. //
  37.  
  38. class CButtonApp : public CWinApp
  39. {
  40. public:
  41.     CButtonApp();
  42.  
  43. // Overrides
  44.     // ClassWizard generated virtual function overrides
  45.     //{{AFX_VIRTUAL(CButtonApp)
  46.     //}}AFX_VIRTUAL
  47.  
  48.     //{{AFX_MSG(CButtonApp)
  49.         // NOTE - the ClassWizard will add and remove member functions here.
  50.         //    DO NOT EDIT what you see in these blocks of generated code !
  51.     //}}AFX_MSG
  52.     DECLARE_MESSAGE_MAP()
  53. };
  54.  
  55.  
  56. /////////////////////////////////////////////////////////////////////////////
  57.  
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  60.  
  61. #endif // !defined(AFX_BUTTON_H__D6D63EC5_3EA4_11D3_A911_00104B9A4FD0__INCLUDED_)
  62.